home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / comm1 / dnload30.zip / LOGREAD.WAS < prev    next >
Text File  |  1993-04-17  |  465b  |  10 lines

  1. ;This short script will load Windows Notepad with the ;Log.txt file. Using Notepad, you may edit the file as you ;wish when there comes a time to delete filenames or add ;comments to the file. Just make sure that the Path is ;correct for your system.
  2.  
  3. proc main
  4. string prowin_path=$PWTASKPATH,C1,note
  5. strfmt S7 "%s\dnload.ini" prowin_path
  6. profilerd S7 "PATH" "storage" C1
  7. strfmt note "notepad.exe %s\log.txt" C1
  8. run note   ;c:\prowin\qwk\Log.txt" 
  9. endproc
  10.